home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 7
/
Aminet 7 - August 1995.iso
/
Aminet
/
text
/
hyper
/
ADtoHT2_1.lha
/
Source.lha
/
MyLib.lha
/
stdlib
/
abs.c
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-01-01
|
249 b
|
16 lines
#if defined(__GNUC__) && !defined(__OPTIMIZE__)
#error Please compile this file with -O
#else
#include <stdlib.h>
/************************************************************************/
int (abs)(int Number)
{
return abs(Number);
}
#endif